home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 22
/
Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso
/
Aminet
/
util
/
sys
/
Make060.lha
/
Make060
/
Make060.c
< prev
next >
Wrap
C/C++ Source or Header
|
1997-08-28
|
663b
|
40 lines
/*
** $VER: Make060 1.1 (28.8.97)
**
** Sets AFF_68060 in ExecBase, it your accelerator soft didn't...
**
** (C) Copyright 1996-97 Andreas R. Kleinert
** All Rights Reserved.
*/
#define __USE_SYSBASE
#include <exec/types.h>
#include <exec/execbase.h>
#include <proto/exec.h>
#ifndef AFB_68060 /* if not already done within "execbase.h" */
#define AFB_68060 (7)
#define AFF_68060 (1L<<AFB_68060)
#endif /* AFB_68060 */
#include <stdlib.h>
char ver_text [] = "\0$VER: Make060 1.1 (28.8.97)";
void main(long argc, char **argv)
{
extern struct ExecBase *SysBase;
Forbid();
SysBase->AttnFlags |= AFF_68060;
Permit();
exit(0);
}